version 2.9 bump (#254)
authorSteven G. Johnson <stevenj@alum.mit.edu>
Fri, 20 Oct 2023 20:42:25 +0000 (16:42 -0400)
committerGitHub <noreply@github.com>
Fri, 20 Oct 2023 20:42:25 +0000 (16:42 -0400)
CMakeLists.txt
MANIFEST
Makefile
NEWS.md
utf8proc.h

index a4b77317e0162bfd77623e33a24f25bdb8bb06f0..f18615e828b554f417e10d4c198b9efa05d730fe 100644 (file)
@@ -7,13 +7,13 @@ disallow_intree_builds()
 if (POLICY CMP0048)
   cmake_policy (SET CMP0048 NEW)
 endif ()
-project (utf8proc VERSION 2.8.0 LANGUAGES C)
+project (utf8proc VERSION 2.9.0 LANGUAGES C)
 
 # This is the ABI version number, which may differ from the
 # API version number (defined in utf8proc.h and above).
 # Be sure to also update these in Makefile and MANIFEST!
-set(SO_MAJOR 2)
-set(SO_MINOR 6)
+set(SO_MAJOR 3)
+set(SO_MINOR 0)
 set(SO_PATCH 0)
 
 option(UTF8PROC_INSTALL "Enable installation of utf8proc" On)
index db27dd455357b8eeb538477389bcb07a8deb68b4..a021fdb18e30b8cdcd010a1a0002517faa7a0401 100644 (file)
--- a/MANIFEST
+++ b/MANIFEST
@@ -2,8 +2,8 @@ include/
 include/utf8proc.h
 lib/
 lib/libutf8proc.a
-lib/libutf8proc.so -> libutf8proc.so.2.6.0
-lib/libutf8proc.so.2 -> libutf8proc.so.2.6.0
-lib/libutf8proc.so.2.6.0
+lib/libutf8proc.so -> libutf8proc.so.3.0.0
+lib/libutf8proc.so.2 -> libutf8proc.so.3.0.0
+lib/libutf8proc.so.3.0.0
 lib/pkgconfig/
 lib/pkgconfig/libutf8proc.pc
index 98af081e04c4f19288a4a6554d484da68f68f4b9..02a13db2313f2f2f6e121e02d76c34de5d8253a0 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -22,8 +22,8 @@ SOFLAG = -Wl,-soname
 # compatibility is broken, even if the API is backward-compatible.
 # The API version number is defined in utf8proc.h.
 # Be sure to also update these ABI versions in MANIFEST and CMakeLists.txt!
-MAJOR=2
-MINOR=6
+MAJOR=3
+MINOR=0
 PATCH=0
 
 OS := $(shell uname)
diff --git a/NEWS.md b/NEWS.md
index fc148601400b3ba7a6cd36df0ee8b31ee8eea71b..6af623993436b28bc90316e5093d3153bddb5ebc 100644 (file)
--- a/NEWS.md
+++ b/NEWS.md
@@ -1,5 +1,11 @@
 # utf8proc release history #
 
+## Version 2.9.0 ##
+
+2023-10-20
+
+ - Unicode 15.1 support ([#253]).
+
 ## Version 2.8.0 ##
 
 2022-10-30
@@ -436,3 +442,4 @@ Release of version 1.0.1
 [#224]: https://github.com/JuliaStrings/utf8proc/issues/224
 [#233]: https://github.com/JuliaStrings/utf8proc/issues/233
 [#247]: https://github.com/JuliaStrings/utf8proc/issues/247
+[#253]: https://github.com/JuliaStrings/utf8proc/issues/253
index a4be10969fe41de25bc59a289201655add143eb2..a39874a389604fec206dedaadb5b1bcb5419a20a 100644 (file)
@@ -71,7 +71,7 @@
 /** The MAJOR version number (increased when backwards API compatibility is broken). */
 #define UTF8PROC_VERSION_MAJOR 2
 /** The MINOR version number (increased when new functionality is added in a backwards-compatible manner). */
-#define UTF8PROC_VERSION_MINOR 8
+#define UTF8PROC_VERSION_MINOR 9
 /** The PATCH version (increased for fixes that do not change the API). */
 #define UTF8PROC_VERSION_PATCH 0
 /** @} */